Lesson 3

Print (Hello World)
Create a file and give it a name. Now we can start!
This is the code to print hello world.



print("Hello World")
        

The 'print' statement makes Python print something.
The quotation marks are there for a reason; they ensure that it prints TEXT.
If the quotation marks are not present, Python thinks it should print a variable, but there are no variables now.
In the next lesson, we'll talk about variables.

Here is a link to the next lesson: variables